home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / alpha.arc / IPDUMP.C < prev    next >
C/C++ Source or Header  |  1988-02-18  |  2KB  |  84 lines

  1. #include <stdio.h>
  2. #include "global.h"
  3. #include "mbuf.h"
  4. #include "internet.h"
  5. #include "timer.h"
  6. #include "iface.h"
  7. #include "ip.h"
  8. #include "trace.h"
  9. #include "netuser.h"
  10.  
  11. int
  12. ip_dump(bpp,check)
  13. struct mbuf **bpp;
  14. int check;
  15. {
  16.     void tcp_dump(),udp_dump(),icmp_dump();
  17.     struct ip ip;
  18.     int16 ip_len;
  19.     int16 offset;
  20.     int16 length;
  21.     int16 csum;
  22.  
  23.     if(bpp == NULLBUFP || *bpp == NULLBUF)
  24.         return;    
  25.  
  26.     printf("IP:");
  27.     /* Sneak peek at IP header and find length */
  28.     ip_len = ((*bpp)->data[0] & 0xf) << 2;
  29.     if(ip_len < IPLEN){
  30.         printf(" bad header\n");
  31.         return;
  32.     }
  33.     if(check)
  34.         csum = cksum(NULLHEADER,*bpp,ip_len);
  35.     else
  36.         csum = 0;
  37.  
  38.     ntohip(&ip,bpp);    /* Can't fail, we've already checked ihl */
  39.  
  40.     /* Trim data segment if necessary. */
  41.     length = ip.length - ip_len;    /* Length of data portion */
  42.     trim_mbuf(bpp,length);    
  43.     printf(" len %u",ip.length);
  44.     printf(" %s",inet_ntoa(ip.source));
  45.     printf("->%s ihl %u ttl %u",
  46.         inet_ntoa(ip.dest),ip_len,uchar(ip.ttl));
  47.     if(ip.tos != 0)
  48.         printf(" tos %u",uchar(ip.tos));
  49.     offset = (ip.fl_offs & F_OFFSET) << 3;
  50.     if(offset != 0 || (ip.fl_offs & MF))
  51.         printf(" id %u offs %u",ip.id,offset);
  52.     if(ip.fl_offs & DF)
  53.         printf(" DF");
  54.     if(ip.fl_offs & MF){
  55.         printf(" MF");
  56.         check = 0;    /* Bypass host-level checksum verify */
  57.     }
  58.     if(csum != 0)
  59.         printf(" CHECKSUM ERROR (%u)",csum);
  60.  
  61.     if(offset != 0){
  62.         printf("\n");
  63.         return;
  64.     }
  65.     switch(uchar(ip.protocol)){
  66.     case TCP_PTCL:
  67.         printf(" prot TCP\n");
  68.         tcp_dump(bpp,ip.source,ip.dest,check);
  69.         break;
  70.     case UDP_PTCL:
  71.         printf(" prot UDP\n");
  72.         udp_dump(bpp,ip.source,ip.dest,check);
  73.         break;
  74.     case ICMP_PTCL:
  75.         printf(" prot ICMP\n");
  76.         icmp_dump(bpp,ip.source,ip.dest,check);
  77.         break;
  78.     default:
  79.         printf(" prot %u\n",uchar(ip.protocol));
  80.         break;
  81.     }
  82. }
  83.  
  84.